home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
THINKC
/
TCL1
/
GRAPH_FO
/
(GRAPH
/
CGRAPHTE
/
GRAPH_MA.C
< prev
Wrap
C/C++ Source or Header
|
1991-06-13
|
741b
|
30 lines
/******************************************************************************
Graph.main.c
Template for a main program for an application built with the THINK
Class Library
Copyright ⌐ 1989 Symantec Corporation. All rights reserved.
INSTRUCTIONS:
Replace all occurrences of the string 'Graph' with the name
of your application.
******************************************************************************/
#include "CGraphApp.h" /* XXX Application subclass header */
extern CApplication *gApplication;
void main(void)
{
/* InitMethodCache(); */ /* if using method caching */
gApplication = new(CGraphApp);
((CGraphApp*)gApplication)->IGraphApp();
gApplication->Run();
gApplication->Exit();
}
/* EOF */